home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / web / WEBLST1.WS < prev    next >
Encoding:
Text File  |  1997-09-29  |  547 b   |  27 lines

  1. program CGIApp;
  2. {$APPTYPE CONSOLE}
  3. uses
  4.   HTTPApp,
  5.   CGIApp,
  6.   webmod in 'webmod.pas' {WebModule1: TWebModule};
  7.   {$R *.RES}
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TWebModule1, WebModule1);
  11.   Application.Run;
  12. end.
  13.   library ISAPIApp;
  14. uses
  15.   HTTPApp,
  16.   ISAPIApp,
  17.   webmod in 'webmod.pas' {WebModule1: TWebModule};
  18. {$R *.RES}
  19. exports
  20.   GetExtensionVersion,
  21.   HttpExtensionProc,
  22.   TerminateExtension;
  23. begin
  24.   Application.Initialize;
  25.   Application.CreateForm(TWebModule1, WebModule1);
  26.   Application.Run;
  27. end